home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 2010 Software/Programs / PCGuia_programas.iso / Software / Internet / The Dude / dude-install-3.5.exe / data / files / mibs / KBRIDGE-MIB.txt < prev    next >
Encoding:
Text File  |  2009-12-11  |  46.4 KB  |  1,345 lines

  1. KBRIDGE-MIB DEFINITIONS ::= BEGIN
  2.  
  3.         IMPORTS
  4.             MODULE-IDENTITY, OBJECT-TYPE, 
  5.             Counter32, IpAddress, Gauge32, Unsigned32,
  6.             enterprises 
  7.                 FROM SNMPv2-SMI;
  8. -- **********************************************************************
  9. -- * MODULE IDENTITY
  10. -- **********************************************************************
  11.  
  12.     karlnet MODULE-IDENTITY
  13.         LAST-UPDATED "200201281200Z"
  14.         ORGANIZATION "KarlNet Incorporated"
  15.         CONTACT-INFO
  16.             "Postal: KarlNet Incorporated
  17.                      525 Metro Place North
  18.                      Suite 100
  19.                      Dublin, OH 43017 USA
  20.                 Tel: +1 614 822 5275
  21.                 Fax: +1 614 822 0024
  22.              E-mail: info@karlnet.com"
  23.         DESCRIPTION
  24.             "The MIB module for KarlNet entities.
  25.             iso(1).org(3).dod(6).internet(1).mgmt(4).enterprises(1).karlnet(762)"
  26.         REVISION     "200201281200Z"
  27.         DESCRIPTION    "Several minor updates; also added ClientInfo and SEC MIB sections."
  28.         REVISION     "200107171200Z"
  29.         DESCRIPTION    "Converted to public form."
  30.         REVISION     "200105091200Z"
  31.         DESCRIPTION    "Updated CONTACT-INFO.
  32.                     Added the kbSEC and kbClientInfo sections."
  33.         REVISION     "200009181200Z"
  34.         DESCRIPTION    "Changed kbWirelessStationSNR type from Gauge32 to INTEGER"
  35.         REVISION     "200007251200Z"
  36.         DESCRIPTION    "Added description text on kbControlTemperature to clarify that the
  37.                     temperature given is in half-degree increments centigrade. That is,
  38.                     kbControlTemperature = 66 implies 33 degrees Celsius."
  39.         REVISION     "200007111200Z"
  40.         DESCRIPTION    "Initial Release."
  41.  
  42.         ::= { enterprises 762 }
  43.  
  44.     kbridge-mib OBJECT IDENTIFIER ::= { karlnet 2 }
  45.  
  46.     karlNetKBControl OBJECT IDENTIFIER ::= { kbridge-mib 1 }
  47.           
  48.           --            (Borrowed from the Bridge MIB)                    
  49.           -- All representations of MAC addresses in this MIB Module
  50.           -- use, as a textual convention (i.e. this convention does
  51.           -- not affect their encoding), the data type:
  52.           MacAddress ::= OCTET STRING (SIZE (6))    -- a 6 octet address
  53.                                                     -- in the
  54.                                                     -- "canonical"
  55.                                                     -- order
  56.           -- 16-bit addresses, if needed, are represented by setting
  57.           -- their upper 4 octets to all 0's, i.e., AAFF would be
  58.           -- represented as 00000000AAFF.
  59.  
  60.  
  61. -- ******************************************
  62. -- ** kbControl block
  63. -- ******************************************                              
  64. -- KBRIDGE control MIB.
  65. -- 6 = kbControlReboot 
  66. -- 9 = kbDummy - used for testing write community
  67. -- 11 = shutdown (1 = shutdown)
  68. -- 12 = Temperature from Dallas chip in 1/2 degree centagrade increments)    
  69.  
  70.     kbControlReboot OBJECT-TYPE
  71.         SYNTAX INTEGER (1)
  72.         MAX-ACCESS write-only
  73.         STATUS current
  74.         DESCRIPTION 
  75.             "Set this OID value to 1 to reboot the KarlBridge."
  76.         ::= { karlNetKBControl 6 }
  77.         
  78.     kbControlTestSNMPWrite OBJECT-TYPE
  79.         SYNTAX INTEGER (1)
  80.         MAX-ACCESS write-only
  81.         STATUS current
  82.         DESCRIPTION 
  83.             "This OID is provided to test whether your SNMP software can 
  84.             successfully set an OID on the KarlBridge by setting its value to 1."
  85.         ::= { karlNetKBControl 9 }
  86.         
  87.     kbControlShutdown OBJECT-TYPE
  88.         SYNTAX INTEGER (1)
  89.         MAX-ACCESS write-only
  90.         STATUS current
  91.         DESCRIPTION 
  92.             "Set this OID to 1 to shutdown the KarlBridge."
  93.         ::= { karlNetKBControl 11 }
  94.         
  95.     kbControlTemperature OBJECT-TYPE
  96.         SYNTAX INTEGER
  97.         MAX-ACCESS read-only
  98.         STATUS current
  99.         DESCRIPTION 
  100.             "For KarlBridges equipped with a Dallas temperature chip, returns the temperature 
  101.             of the Dallas chip in 1/2 degree centigrade increments (+/- 0.5 degrees C).
  102.             To determine the correct temperature in Centigrade, divide by 2.
  103.             To determine the correct temperature in Fahrenheit, divide by 2, then multiply by 9/5 and add 32.
  104.             KarlBridges that are not equipped with the Dallas chip return a 'noSuchName' error."
  105.         ::= { karlNetKBControl 12 }
  106.         
  107.     -------------------------------------------------------------------
  108.     --- KarlBridge kbWireless MIB module
  109.     ---    Holds various client station statistics, mostly for the 
  110.     ---     TurboCell outdoor protocols. 
  111.     ---    The 'kbWirelessTest*' values are also used for general-purpose
  112.     ---     wireless link test statistics
  113.     ---
  114.     kbWireless OBJECT IDENTIFIER ::= { kbridge-mib 5 }
  115.  
  116.     kbWirelessStationNumber OBJECT-TYPE
  117.         SYNTAX INTEGER
  118.         MAX-ACCESS read-only
  119.         STATUS current
  120.         DESCRIPTION
  121.             "The number of registered stations (i.e. valid entries) in the 
  122.             kbWirelessStationTable."
  123.         ::= { kbWireless 1 }        
  124.  
  125.     kbWirelessStationTable OBJECT-TYPE
  126.         SYNTAX SEQUENCE OF KBWirelessStationEntry
  127.         MAX-ACCESS not-accessible
  128.         STATUS current
  129.         DESCRIPTION
  130.             "List of wireless connections and their attributes. 
  131.             Each entry in the table corresponds to a particular 
  132.             wireless station (usually a satellite) that is 
  133.             attached to a particular wireless interface."
  134.         ::= { kbWireless 2 }
  135.  
  136.     kbWirelessStationEntry OBJECT-TYPE
  137.         SYNTAX KBWirelessStationEntry
  138.         MAX-ACCESS not-accessible
  139.         STATUS current
  140.         DESCRIPTION
  141.             "An entry in the kbWirelessStationTable. Each entry
  142.             corresponds to a particular wireless station connected
  143.             to one of the KarlBridge's interfaces. The entries are 
  144.             indexed by kbWirelessStationIndex and also can be generally
  145.             considered unique based upon the kbWirelessStationMACAddress
  146.             field."
  147.         INDEX { kbWirelessStationIndex }
  148.         ::= { kbWirelessStationTable 1 }
  149.  
  150.     KBWirelessStationEntry ::=
  151.         SEQUENCE {
  152.                 kbWirelessStationIndex
  153.                         Unsigned32,
  154.                 kbWirelessStationInterfaceNumber
  155.                         Unsigned32,
  156.                 kbWirelessStationName
  157.                         OCTET STRING,
  158.                 kbWirelessStationExclHellos
  159.                         Counter32,
  160.                 kbWirelessStationGoodHellos
  161.                         Counter32,
  162.                 kbWirelessStationLowHellos
  163.                         Counter32,
  164.                 kbWirelessStationSignalLevel
  165.                         Gauge32,
  166.                 kbWirelessStationNoiseLevel
  167.                         Gauge32,
  168.                 kbWirelessStationSignalQuality
  169.                         Gauge32,
  170.                 kbWirelessStationPktTransmits
  171.                         Counter32,
  172.                 kbWirelessStationMACAddress
  173.                         OCTET STRING,
  174.                 kbWirelessStationTransmits
  175.                         Counter32,
  176.                 kbWirelessStationBadTransmits
  177.                         Counter32,
  178.                 kbWirelessStationReTransmits
  179.                         Counter32,
  180.                 kbWirelessStationIPAddress
  181.                         IpAddress,
  182.                 kbWirelessStationType
  183.                         INTEGER, 
  184.                 kbWirelessStationSNR
  185.                         INTEGER, 
  186.                 kbWirelessStationState
  187.                         INTEGER,
  188.                 kbWirelessPoll
  189.                         Counter32,
  190.                 kbWirelessPollData
  191.                         Counter32,
  192.                 kbWirelessPollNoData
  193.                         Counter32,
  194.                 kbWirelessPollMoreData
  195.                         Counter32,
  196.                 kbWirelessPollTimeouts 
  197.                         Counter32,
  198.                 kbWirelessPollOfflines
  199.                         Counter32,
  200.                 kbWirelessTestTime
  201.                         Counter32,
  202.                 kbWirelessTestInterval
  203.                         Unsigned32,
  204.                 kbWirelessTestPacketSize
  205.                         Integer32,
  206.                 kbWirelessTestOurTx
  207.                         Counter32,
  208.                 kbWirelessTestOurRx 
  209.                         Counter32,
  210.                 kbWirelessTestHisTx
  211.                         Counter32,
  212.                 kbWirelessTestHisRx
  213.                         Counter32,
  214.                 kbWirelessTestOurCurSignalLevel
  215.                         Gauge32,
  216.                 kbWirelessTestOurCurNoiseLevel
  217.                         Gauge32,
  218.                 kbWirelessTestOurCurSignalQuality
  219.                         Gauge32,
  220.                 kbWirelessTestOurCurSNR
  221.                         Gauge32,
  222.                 kbWirelessTestOurMinSignalLevel
  223.                         Gauge32,
  224.                 kbWirelessTestOurMinNoiseLevel
  225.                         Gauge32,
  226.                 kbWirelessTestOurMinSignalQuality
  227.                         Gauge32,
  228.                 kbWirelessTestOurMinSNR
  229.                         Gauge32,
  230.                 kbWirelessTestOurMaxSignalLevel
  231.                         Gauge32,
  232.                 kbWirelessTestOurMaxNoiseLevel
  233.                         Gauge32,
  234.                 kbWirelessTestOurMaxSignalQuality
  235.                         Gauge32,
  236.                 kbWirelessTestOurMaxSNR
  237.                         Gauge32,
  238.                 kbWirelessTestHisCurSignalLevel
  239.                         Gauge32,
  240.                 kbWirelessTestHisCurNoiseLevel
  241.                         Gauge32,
  242.                 kbWirelessTestHisCurSignalQuality
  243.                         Gauge32,                               
  244.                 kbWirelessTestHisCurSNR
  245.                         Gauge32,
  246.                 kbWirelessTestHisMinSignalLevel
  247.                         Gauge32,
  248.                 kbWirelessTestHisMinNoiseLevel
  249.                         Gauge32,
  250.                 kbWirelessTestHisMinSignalQuality
  251.                         Gauge32,
  252.                 kbWirelessTestHisMinSNR
  253.                         Gauge32,
  254.                 kbWirelessTestHisMaxSignalLevel
  255.                         Gauge32,
  256.                 kbWirelessTestHisMaxNoiseLevel
  257.                         Gauge32,
  258.                 kbWirelessTestHisMaxSignalQuality
  259.                         Gauge32,
  260.                 kbWirelessTestHisMaxSNR
  261.                         Gauge32,
  262.                 kbWirelessTestLinkUp
  263.                         INTEGER,         
  264.                 kbWirelessTestLostLink
  265.                         INTEGER,
  266.                 kbWirelessTestLostTestPkts
  267.                         INTEGER,
  268.                 kbWirelessStationRadioType
  269.                         INTEGER,
  270.                 kbWirelessRecordType
  271.                         INTEGER,
  272.                 kbWirelessStationPktReceives
  273.                         Counter32,
  274.                 kbWirelessStationReceives
  275.                         Counter32,
  276.                 kbWirelessStationBytesReceives
  277.                         Counter32,
  278.                 kbWirelessStationBytesTransmits
  279.                         Counter32,
  280.                 kbWirelessRegistrationRecord
  281.                         OCTET STRING,
  282.                 kbWirelessStationFragmentDiscards
  283.                         Counter32,
  284.                 kbWirelessStationFragmentMissings 
  285.                         Counter32,
  286.                 kbWirelessStationFragmentLostFrames 
  287.                         Counter32,
  288.                 kbWirelessStationFragmentErrors
  289.                         Counter32
  290.     }
  291.  
  292.     kbWirelessStationIndex OBJECT-TYPE
  293.         SYNTAX Unsigned32 (0..4294967295)
  294.         MAX-ACCESS read-only
  295.         STATUS current
  296.         DESCRIPTION
  297.             "The index of this entry in the kbWirelessStationTable.
  298.             Each entry in the table has a unique kbWirelessStationIndex."
  299.         ::= { kbWirelessStationEntry 1 }
  300.  
  301.     kbWirelessStationInterfaceNumber OBJECT-TYPE
  302.         SYNTAX Unsigned32 (0..4294967295)
  303.         MAX-ACCESS read-only
  304.         STATUS current
  305.         DESCRIPTION
  306.             "The interface number of the wireless network interface
  307.             that this entry is attached to. When a KarlBridge contains 
  308.             multiple wireless network interfaces, different entries
  309.             may contain different values for this field. Interface 
  310.             numbering includes non-wireless interfaces, with the 
  311.             first network interface being number 1."
  312.         ::= { kbWirelessStationEntry 2 }
  313.  
  314.     kbWirelessStationName OBJECT-TYPE
  315.         SYNTAX OCTET STRING
  316.         MAX-ACCESS read-only
  317.         STATUS current
  318.         DESCRIPTION
  319.             "The name of the remote wireless station as reported 
  320.             to the KarlBridge."
  321.         ::= { kbWirelessStationEntry 3 }
  322.  
  323.     kbWirelessStationExclHellos OBJECT-TYPE
  324.         SYNTAX Counter32
  325.         MAX-ACCESS read-only
  326.         STATUS current
  327.         DESCRIPTION
  328.             "The number of Hello packets from the KarlBridge that were
  329.             received by the remote station with Excellent signal quality."
  330.         ::= { kbWirelessStationEntry 4 }
  331.  
  332.     kbWirelessStationGoodHellos OBJECT-TYPE
  333.         SYNTAX Counter32
  334.         MAX-ACCESS read-only
  335.         STATUS current
  336.         DESCRIPTION
  337.             "The number of Hello packets from the KarlBridge that were
  338.             received by the remote station with Good signal quality."
  339.         ::= { kbWirelessStationEntry 5 }
  340.  
  341.     kbWirelessStationLowHellos OBJECT-TYPE
  342.         SYNTAX Counter32
  343.         MAX-ACCESS read-only
  344.         STATUS current
  345.         DESCRIPTION
  346.             "The number of Hello packets from the KarlBridge that were
  347.             received by the remote station with Low signal quality."
  348.         ::= { kbWirelessStationEntry 6 }
  349.  
  350.     kbWirelessStationSignalLevel OBJECT-TYPE
  351.         SYNTAX Gauge32
  352.         MAX-ACCESS read-only
  353.         STATUS current
  354.         DESCRIPTION
  355.             "The radio signal level in percentage."
  356.         ::= { kbWirelessStationEntry 7 }
  357.  
  358.     kbWirelessStationNoiseLevel OBJECT-TYPE
  359.         SYNTAX Gauge32
  360.         MAX-ACCESS read-only
  361.         STATUS current
  362.         DESCRIPTION
  363.             "The radio noise level in percentage."
  364.         ::= { kbWirelessStationEntry 8 }
  365.  
  366.     kbWirelessStationSignalQuality OBJECT-TYPE
  367.         SYNTAX Gauge32 
  368.         MAX-ACCESS read-only
  369.         STATUS current
  370.         DESCRIPTION
  371.             "The relative signal quality of the radio transmissions."
  372.         ::= { kbWirelessStationEntry 9 }
  373.  
  374.     kbWirelessStationPktTransmits OBJECT-TYPE
  375.         SYNTAX Counter32
  376.         MAX-ACCESS read-only
  377.         STATUS current
  378.         DESCRIPTION
  379.             "The number of Ethernet packets the remote station has 
  380.             transmitted through the wireless interface connected 
  381.             to the KarlBridge."
  382.         ::= { kbWirelessStationEntry 10 }
  383.  
  384.     kbWirelessStationMACAddress OBJECT-TYPE
  385.         SYNTAX OCTET STRING
  386.         MAX-ACCESS read-only
  387.         STATUS current
  388.         DESCRIPTION
  389.             "The Ethernet (MAC) address of the remote station's 
  390.             wireless interface that is connected to the KarlBridge."
  391.         ::= { kbWirelessStationEntry 11 }
  392.  
  393.     kbWirelessStationTransmits OBJECT-TYPE
  394.         SYNTAX Counter32
  395.         MAX-ACCESS read-only
  396.         STATUS current
  397.         DESCRIPTION
  398.             "The total number of wireless transmissions the KarlBridge 
  399.             has made to the remote station through this interface.
  400.             This number does not necessarily correspond to the number 
  401.             of Ethernet packets transmitted through this interface 
  402.             (see kbWirelessStationPktTransmits)."
  403.         ::= { kbWirelessStationEntry 12 }
  404.  
  405.     kbWirelessStationBadTransmits OBJECT-TYPE
  406.         SYNTAX Counter32
  407.         MAX-ACCESS read-only
  408.         STATUS current
  409.         DESCRIPTION
  410.             "The total number of failed wireless transmissions the KarlBridge 
  411.             has made to the remote station through this interface. If a 
  412.             wireless transmission is not received after 10 attempts, this
  413.             counter is incremented."
  414.         ::= { kbWirelessStationEntry 13 }
  415.  
  416.     kbWirelessStationReTransmits OBJECT-TYPE
  417.         SYNTAX Counter32
  418.         MAX-ACCESS read-only
  419.         STATUS current
  420.         DESCRIPTION
  421.             "The total number of wireless re-transmissions the KarlBridge 
  422.             has attempted to the remote station through this interface."
  423.         ::= { kbWirelessStationEntry 14 }
  424.  
  425.     kbWirelessStationIPAddress OBJECT-TYPE
  426.         SYNTAX IpAddress
  427.         MAX-ACCESS read-only
  428.         STATUS current
  429.         DESCRIPTION
  430.             "The IP address of the remote station, if any."
  431.         ::= { kbWirelessStationEntry 15 }
  432.  
  433.     kbWirelessStationType OBJECT-TYPE
  434.         SYNTAX INTEGER 
  435.             {
  436.                 compatibility_Mode(1),
  437.                 tc_Peer_to_Peer(2),
  438.                 tc_Base_Station(3),
  439.                 tc_Satellite_Station(4),
  440.                 tc_Polling_Base_Station(5),
  441.                 tc_PtP_Controller(6)
  442.             }
  443.         MAX-ACCESS read-only
  444.         STATUS current
  445.         DESCRIPTION
  446.             "The remote station's mode of operation on this radio interface. Possible values are:
  447.                 compatibility_Mode(1)         -- IEEE 802.11 mode or legacy Wireless(-I) mode
  448.                 tc_Peer_to_Peer(2)            -- TurboCell Peer-to-Peer Station (no base stations, no polling)
  449.                 tc_Base_Station(3)            -- TurboCell Base Station
  450.                 tc_Satellite_Station(4)          -- TurboCell Satellite Station
  451.                 tc_Polling_Base_Station(5)    -- TurboCell Polling Base Station
  452.                 tc_PtP_Controller(6)          -- TurboCell Point-to-Point Controller (Single-User Base Station)"
  453.         ::= { kbWirelessStationEntry 16 }
  454.  
  455.     kbWirelessStationSNR OBJECT-TYPE
  456.         SYNTAX INTEGER 
  457.             {
  458.             unknown_SNR(1),
  459.             low_SNR(2),
  460.             good_SNR(3),
  461.             excellent_SNR(4)
  462.             }
  463.         MAX-ACCESS read-only
  464.         STATUS current
  465.         DESCRIPTION
  466.             "The relative Signal-to-Noise Ratio of the wireless connection
  467.             between the remote station and the KarlBridge."
  468.         ::= { kbWirelessStationEntry 17 }
  469.     
  470.     kbWirelessStationState OBJECT-TYPE
  471.         SYNTAX INTEGER 
  472.             {
  473.             online(1),
  474.              offline(2)
  475.             }
  476.         MAX-ACCESS read-only
  477.         STATUS current
  478.         DESCRIPTION
  479.             "The remote station's wireless connection status.
  480.             The remote station is said to be offline when it appears
  481.             to cease wireless communication, either because it no longer
  482.             acknowledges poll packets or no longer sends poll packets"
  483.         ::= { kbWirelessStationEntry 18 }
  484.  
  485.     kbWirelessPoll OBJECT-TYPE
  486.         SYNTAX Counter32
  487.         MAX-ACCESS read-only
  488.         STATUS current
  489.         DESCRIPTION
  490.             "The number of times the KarlBridge has polled the remote station."
  491.         ::= { kbWirelessStationEntry 19 }
  492.  
  493.     kbWirelessPollData OBJECT-TYPE
  494.         SYNTAX Counter32
  495.         MAX-ACCESS read-only
  496.         STATUS current
  497.         DESCRIPTION
  498.             "The number of times the KarlBridge has polled the remote station 
  499.             that the remote station has responded with data, after which the
  500.             remote station's transmit queue is empty."
  501.         ::= { kbWirelessStationEntry 20 }
  502.  
  503.     kbWirelessPollNoData OBJECT-TYPE
  504.         SYNTAX Counter32
  505.         MAX-ACCESS read-only
  506.         STATUS current
  507.         DESCRIPTION
  508.             "The number of times the KarlBridge has polled the remote station
  509.             that the remote station has not responded with data."
  510.         ::= { kbWirelessStationEntry 21 }
  511.  
  512.     kbWirelessPollMoreData OBJECT-TYPE
  513.         SYNTAX Counter32
  514.         MAX-ACCESS read-only
  515.         STATUS deprecated
  516.         DESCRIPTION
  517.             "The number of times the KarlBridge has polled the remote station
  518.             that the remote station has had more data in its transmit queue 
  519.             than it could transmit in a single poll response."
  520.         ::= { kbWirelessStationEntry 22 }
  521.  
  522.     kbWirelessPollTimeouts OBJECT-TYPE
  523.         SYNTAX Counter32
  524.         MAX-ACCESS read-write
  525.         STATUS current
  526.         DESCRIPTION
  527.             "The number of times the KarlBridge has polled the remote station
  528.             and the remote station has not responded before the timeout 
  529.             period expired."
  530.         ::= { kbWirelessStationEntry 23 }
  531.  
  532.     kbWirelessPollOfflines OBJECT-TYPE
  533.         SYNTAX Counter32
  534.         MAX-ACCESS read-write
  535.         STATUS current
  536.         DESCRIPTION
  537.             "The number of times the remote station has gone offline.
  538.             The value is relevant only when the KarlBridge is in one of 
  539.             the Base Station modes (polling or non-polling)."
  540.         ::= { kbWirelessStationEntry 24 }
  541.  
  542.     kbWirelessTestTime OBJECT-TYPE
  543.         SYNTAX Counter32
  544.         MAX-ACCESS read-write
  545.         STATUS current
  546.         DESCRIPTION
  547.             "The number of seconds remaining in the wireless link test.
  548.             This value is read-writable, and is decremented by the device 
  549.                         every second until it reaches 0, at which point the test is 
  550.             finished. To stop the test, set this value to 0."
  551.         ::= { kbWirelessStationEntry 25 }
  552.  
  553.     kbWirelessTestInterval OBJECT-TYPE
  554.         SYNTAX Unsigned32 (0..4294967295)
  555.         MAX-ACCESS read-write
  556.         STATUS current
  557.         DESCRIPTION
  558.             "The duration (in hundredths of seconds) of the radio link test
  559.             performed between the KarlBridge and the remote station."
  560.         ::= { kbWirelessStationEntry 26 }
  561.  
  562.     kbWirelessTestPacketSize OBJECT-TYPE
  563.         SYNTAX Integer32 (0..2147483647)
  564.         MAX-ACCESS read-write
  565.         STATUS current
  566.         DESCRIPTION
  567.             "The size of the radio link test packets
  568.             sent between the KarlBridge and the remote station." 
  569.         ::= { kbWirelessStationEntry 27 }
  570.  
  571.     kbWirelessTestOurTx OBJECT-TYPE
  572.         SYNTAX Counter32
  573.         MAX-ACCESS read-only
  574.         STATUS current
  575.         DESCRIPTION
  576.             "The radio transmit rate of the KarlBridge's radio when 
  577.             performing the radio link test."
  578.         ::= { kbWirelessStationEntry 28 }
  579.  
  580.     kbWirelessTestOurRx OBJECT-TYPE
  581.         SYNTAX Counter32
  582.         MAX-ACCESS read-only
  583.         STATUS current
  584.         DESCRIPTION
  585.             "The radio receive rate used by the KarlBridge 
  586.             when performing the radio link test."
  587.         ::= { kbWirelessStationEntry 29 }
  588.  
  589.     kbWirelessTestHisTx OBJECT-TYPE
  590.         SYNTAX Counter32
  591.         MAX-ACCESS read-only
  592.         STATUS current
  593.         DESCRIPTION
  594.             "The radio transmit rate of the remote station's radio when 
  595.             performing the radio link test."
  596.         ::= { kbWirelessStationEntry 30 }
  597.  
  598.     kbWirelessTestHisRx OBJECT-TYPE
  599.         SYNTAX Counter32
  600.         MAX-ACCESS read-only
  601.         STATUS current
  602.         DESCRIPTION
  603.             "The radio receive rate used by the remote station 
  604.             when performing the radio link test."
  605.         ::= { kbWirelessStationEntry 31 }
  606.  
  607.     kbWirelessTestOurCurSignalLevel OBJECT-TYPE
  608.         SYNTAX Gauge32
  609.         MAX-ACCESS read-only
  610.         STATUS current
  611.         DESCRIPTION
  612.             "The current local signal level 
  613.             for the radio link test as recorded by the KarlBridge."
  614.         ::= { kbWirelessStationEntry 32 }
  615.  
  616.     kbWirelessTestOurCurNoiseLevel OBJECT-TYPE
  617.         SYNTAX Gauge32
  618.         MAX-ACCESS read-only
  619.         STATUS current
  620.         DESCRIPTION
  621.             "The current local noise level 
  622.             for the radio link test as recorded by the KarlBridge."
  623.         ::= { kbWirelessStationEntry 33 }
  624.  
  625.     kbWirelessTestOurCurSignalQuality OBJECT-TYPE
  626.         SYNTAX Gauge32
  627.         MAX-ACCESS read-only
  628.         STATUS current
  629.         DESCRIPTION
  630.             "The current relative signal quality 
  631.             for the radio link test as recorded by the KarlBridge."
  632.         ::= { kbWirelessStationEntry 34 }
  633.  
  634.     kbWirelessTestOurCurSNR OBJECT-TYPE
  635.         SYNTAX Gauge32
  636.         MAX-ACCESS read-only
  637.         STATUS current
  638.         DESCRIPTION
  639.             "The current local Signal-to-Noise Ratio (SNR)
  640.             for the radio link test as recorded by the KarlBridge."
  641.         ::= { kbWirelessStationEntry 35 }
  642.  
  643.     kbWirelessTestOurMinSignalLevel OBJECT-TYPE
  644.         SYNTAX Gauge32
  645.         MAX-ACCESS read-only
  646.         STATUS current
  647.         DESCRIPTION
  648.             "The minimum local signal level 
  649.             recorded by the KarlBridge during the radio link test."
  650.         ::= { kbWirelessStationEntry 36 }
  651.  
  652.     kbWirelessTestOurMinNoiseLevel OBJECT-TYPE
  653.         SYNTAX Gauge32
  654.         MAX-ACCESS read-only
  655.         STATUS current
  656.         DESCRIPTION
  657.             "The minimum local noise level 
  658.             recorded by the KarlBridge during the radio link test."
  659.         ::= { kbWirelessStationEntry 37 }
  660.  
  661.     kbWirelessTestOurMinSignalQuality OBJECT-TYPE
  662.         SYNTAX Gauge32
  663.         MAX-ACCESS read-only
  664.         STATUS current
  665.         DESCRIPTION
  666.             "The minimum local signal quality 
  667.             recorded by the KarlBridge during the radio link test."
  668.         ::= { kbWirelessStationEntry 38 }
  669.  
  670.     kbWirelessTestOurMinSNR OBJECT-TYPE
  671.         SYNTAX Gauge32
  672.         MAX-ACCESS read-only
  673.         STATUS current
  674.         DESCRIPTION
  675.             "The minimum local Signal-to-Noise Ratio (SNR) 
  676.             recorded by the KarlBridge during the radio link test."
  677.         ::= { kbWirelessStationEntry 39 }
  678.  
  679.     kbWirelessTestOurMaxSignalLevel OBJECT-TYPE
  680.         SYNTAX Gauge32
  681.         MAX-ACCESS read-only
  682.         STATUS current
  683.         DESCRIPTION
  684.             "The maximum local signal level 
  685.             recorded by the KarlBridge during the radio link test."
  686.         ::= { kbWirelessStationEntry 40 }
  687.  
  688.     kbWirelessTestOurMaxNoiseLevel OBJECT-TYPE
  689.         SYNTAX Gauge32
  690.         MAX-ACCESS read-only
  691.         STATUS current
  692.         DESCRIPTION
  693.             "The maximum local noise level 
  694.             recorded by the KarlBridge during the radio link test."
  695.         ::= { kbWirelessStationEntry 41 }
  696.  
  697.     kbWirelessTestOurMaxSignalQuality OBJECT-TYPE
  698.         SYNTAX Gauge32
  699.         MAX-ACCESS read-only
  700.         STATUS current
  701.         DESCRIPTION
  702.             "The maximum local signal quality 
  703.             recorded by the KarlBridge during the radio link test."
  704.         ::= { kbWirelessStationEntry 42 }
  705.  
  706.     kbWirelessTestOurMaxSNR OBJECT-TYPE
  707.         SYNTAX Gauge32
  708.         MAX-ACCESS read-only
  709.         STATUS current
  710.         DESCRIPTION
  711.             "The maximum local Signal-to-Noise Ratio (SNR) 
  712.             recorded by the KarlBridge during the radio link test."
  713.         ::= { kbWirelessStationEntry 43 }
  714.  
  715.     kbWirelessTestHisCurSignalLevel OBJECT-TYPE
  716.         SYNTAX Gauge32
  717.         MAX-ACCESS read-only
  718.         STATUS current
  719.         DESCRIPTION
  720.             "The current signal level
  721.             at the remote station for the radio link test."
  722.         ::= { kbWirelessStationEntry 44 }
  723.  
  724.     kbWirelessTestHisCurNoiseLevel OBJECT-TYPE
  725.         SYNTAX Gauge32
  726.         MAX-ACCESS read-only
  727.         STATUS current
  728.         DESCRIPTION
  729.             "The current noise level 
  730.             at the remote station for the radio link test."
  731.         ::= { kbWirelessStationEntry 45 }
  732.  
  733.     kbWirelessTestHisCurSignalQuality OBJECT-TYPE
  734.         SYNTAX Gauge32
  735.         MAX-ACCESS read-only
  736.         STATUS current
  737.         DESCRIPTION
  738.             "The current signal quality 
  739.             at the remote station for the radio link test."
  740.         ::= { kbWirelessStationEntry 46 }
  741.  
  742.     kbWirelessTestHisCurSNR OBJECT-TYPE
  743.         SYNTAX Gauge32 
  744.         MAX-ACCESS read-only
  745.         STATUS current
  746.         DESCRIPTION
  747.             "The current Signal-to-Noise Ratio (SNR) 
  748.             at the remote station for the radio link test."
  749.         ::= { kbWirelessStationEntry 47 }
  750.  
  751.     kbWirelessTestHisMinSignalLevel OBJECT-TYPE
  752.         SYNTAX Gauge32 
  753.         MAX-ACCESS read-only
  754.         STATUS current
  755.         DESCRIPTION
  756.             "The minimum signal level recorded
  757.             at the remote station during the radio link test."
  758.         ::= { kbWirelessStationEntry 48 }
  759.  
  760.     kbWirelessTestHisMinNoiseLevel OBJECT-TYPE
  761.         SYNTAX Gauge32 
  762.         MAX-ACCESS read-only
  763.         STATUS current
  764.         DESCRIPTION
  765.             "The minimum noise level recorded
  766.             at the remote station during the radio link test."
  767.         ::= { kbWirelessStationEntry 49 }
  768.  
  769.     kbWirelessTestHisMinSignalQuality OBJECT-TYPE
  770.         SYNTAX Gauge32
  771.         MAX-ACCESS read-only
  772.         STATUS current
  773.         DESCRIPTION
  774.             "The minimum signal quality recorded
  775.             at the remote station during the radio link test."
  776.         ::= { kbWirelessStationEntry 50 }
  777.  
  778.     kbWirelessTestHisMinSNR OBJECT-TYPE
  779.         SYNTAX Gauge32 
  780.         MAX-ACCESS read-only
  781.         STATUS current
  782.         DESCRIPTION
  783.             "The minimum signal level recorded
  784.             at the remote station during the radio link test."
  785.         ::= { kbWirelessStationEntry 51 }
  786.  
  787.     kbWirelessTestHisMaxSignalLevel OBJECT-TYPE
  788.         SYNTAX Gauge32 
  789.         MAX-ACCESS read-only
  790.         STATUS current
  791.         DESCRIPTION
  792.             "The maximum signal level recorded
  793.             at the remote station during the radio link test."
  794.         ::= { kbWirelessStationEntry 52 }
  795.  
  796.     kbWirelessTestHisMaxNoiseLevel OBJECT-TYPE
  797.         SYNTAX Gauge32 
  798.         MAX-ACCESS read-only
  799.         STATUS current
  800.         DESCRIPTION
  801.             "The maximum remote noise level recorded
  802.             at the remote station during the radio link test."
  803.         ::= { kbWirelessStationEntry 53 }
  804.  
  805.     kbWirelessTestHisMaxSignalQuality OBJECT-TYPE
  806.         SYNTAX Gauge32 
  807.         MAX-ACCESS read-only
  808.         STATUS current
  809.         DESCRIPTION
  810.             "The maximum signal quality recorded
  811.             at the remote station during the radio link test."
  812.         ::= { kbWirelessStationEntry 54 }
  813.  
  814.     kbWirelessTestHisMaxSNR OBJECT-TYPE
  815.         SYNTAX Gauge32 
  816.         MAX-ACCESS read-only
  817.         STATUS current
  818.         DESCRIPTION
  819.             "The maximum Signal-to-Noise Ratio (SNR) recorded
  820.             at the remote station during the radio link test."
  821.         ::= { kbWirelessStationEntry 55 }
  822.  
  823.     kbWirelessTestLinkUp OBJECT-TYPE
  824.         SYNTAX INTEGER
  825.             {        
  826.                 down(0),
  827.                 up(1)
  828.             } 
  829.         MAX-ACCESS read-only
  830.         STATUS current
  831.         DESCRIPTION
  832.             "The status of the radio link test. Possible values are:
  833.                 down(0)    -- the radio link test IS NOT currently running
  834.                 up(1)    -- the radio link test IS currently running"
  835.         ::= { kbWirelessStationEntry 56 }
  836.  
  837.     kbWirelessTestLostLink OBJECT-TYPE
  838.         SYNTAX INTEGER
  839.         MAX-ACCESS read-only
  840.         STATUS current
  841.         DESCRIPTION
  842.             "The number of time this link was lost while performing the radio link test."
  843.         ::= { kbWirelessStationEntry 57 }
  844.  
  845.     kbWirelessTestLostTestPkts OBJECT-TYPE
  846.         SYNTAX INTEGER
  847.         MAX-ACCESS read-only
  848.         STATUS current
  849.         DESCRIPTION
  850.             "The total number of radio link test packets 
  851.             that were lost during the test interval."
  852.         ::= { kbWirelessStationEntry 58 }
  853.  
  854.     kbWirelessStationRadioType OBJECT-TYPE
  855.         SYNTAX INTEGER
  856.             {
  857.             waveLAN_I(0),
  858.             clarion_M10(1),
  859.             waveLAN_IEEE(2),
  860.             microwave(3),
  861.             radioLAN(4)
  862.             }
  863.         MAX-ACCESS read-only
  864.         STATUS current
  865.         DESCRIPTION
  866.             "The type of radio the remote station is using on this interface. 
  867.             Possible values include:
  868.                 waveLAN_I(0)    -- legacy Lucent Wireless-I radio (900 MHz)
  869.                 clarion_M10(1)    -- Clarion M10 radio
  870.                 waveLAN_IEEE(2)    -- Lucent ORiNOCO (WaveLAN) IEEE 802.11 radio (2.4 GHz)
  871.                 microwave(3)    -- some type of microwave radio
  872.                 radioLAN(4)     -- some type of RadioLAN radio"
  873.         ::= { kbWirelessStationEntry 59 }
  874.  
  875.     kbWirelessRecordType OBJECT-TYPE
  876.         SYNTAX INTEGER
  877.             {
  878.                 linktest(1),
  879.                 turboCell(2),
  880.                 combination(3)
  881.             }
  882.         MAX-ACCESS read-only
  883.         STATUS current
  884.         DESCRIPTION
  885.             "The type of this record entry. Possible values include:
  886.                 linktest(1)       -- This record contains ONLY LinkTest results
  887.                 turboCell(2)      -- This record contains ONLY a TurboCell station entry
  888.                 combination(3)    -- This record contains BOTH LinkTest results AND a TurboCell station entry"
  889.         ::= { kbWirelessStationEntry 60 }
  890.  
  891.     kbWirelessStationPktReceives OBJECT-TYPE
  892.         SYNTAX Counter32
  893.         MAX-ACCESS read-only
  894.         STATUS current
  895.         DESCRIPTION 
  896.             "The number of packets the KarlBridge has received on this link."
  897.         ::= { kbWirelessStationEntry 61 }
  898.  
  899.     kbWirelessStationReceives OBJECT-TYPE
  900.         SYNTAX Counter32
  901.         MAX-ACCESS read-only
  902.         STATUS current
  903.         DESCRIPTION 
  904.             "The number of wireless transmissions the KarlBridge has received on this link."
  905.         ::= { kbWirelessStationEntry 62 }
  906.  
  907.     kbWirelessStationBytesReceives OBJECT-TYPE
  908.         SYNTAX Counter32
  909.         MAX-ACCESS read-only
  910.         STATUS current
  911.         DESCRIPTION 
  912.             "The number of bytes received by the KarlBridge on this link, 
  913.             including wireless packet headers."
  914.         ::= { kbWirelessStationEntry 63 }
  915.  
  916.     kbWirelessStationBytesTransmits OBJECT-TYPE
  917.         SYNTAX Counter32
  918.         MAX-ACCESS read-only
  919.         STATUS current
  920.         DESCRIPTION 
  921.             "The number of bytes transmitted by the KarlBridge on this link, 
  922.             including wireless packet headers."
  923.         ::= { kbWirelessStationEntry 64 }
  924.  
  925.     kbWirelessRegistrationRecord OBJECT-TYPE
  926.         SYNTAX OCTET STRING
  927.         MAX-ACCESS read-only
  928.         STATUS obsolete
  929.         DESCRIPTION 
  930.             "For testing purposes only."
  931.         ::= { kbWirelessStationEntry 65 }
  932.  
  933.     kbWirelessStationFragmentDiscards OBJECT-TYPE
  934.         SYNTAX Counter32
  935.         MAX-ACCESS read-only
  936.         STATUS current
  937.         DESCRIPTION 
  938.             "The number of times on this connection that the KarlBridge 
  939.             has discarded a fragment. A fragment is discarded because not all 
  940.             fragments needed to reconstruct a packet are present or 
  941.             we need room for a more recent fragment."
  942.         ::= { kbWirelessStationEntry 66 }
  943.  
  944.     kbWirelessStationFragmentMissings OBJECT-TYPE
  945.         SYNTAX Counter32
  946.         MAX-ACCESS read-only
  947.         STATUS current
  948.         DESCRIPTION 
  949.             "The number of times on this connection that the KarlBridge 
  950.             has detected that a fragment needed to recontruct a packet is missing."
  951.         ::= { kbWirelessStationEntry 67 }
  952.  
  953.     kbWirelessStationFragmentLostFrames OBJECT-TYPE
  954.         SYNTAX Counter32
  955.         MAX-ACCESS read-only
  956.         STATUS current
  957.         DESCRIPTION 
  958.             "The number of times on this connection that the KarlBridge 
  959.             detected that a frame containing fragments needed to 
  960.             reconstruct a packet is lost."
  961.         ::= { kbWirelessStationEntry 68 }
  962.  
  963.     kbWirelessStationFragmentErrors OBJECT-TYPE
  964.         SYNTAX Counter32
  965.         MAX-ACCESS read-only
  966.         STATUS current
  967.         DESCRIPTION 
  968.             "The number of times on this connection the KarlBridge 
  969.             has encountered an error while reconstructing a packet from fragments."
  970.         ::= { kbWirelessStationEntry 69 }
  971.  
  972. -- ***********************************************************************
  973. -- ** THE OID'S BELOW MAY CHANGE AND ARE NOT GUARANTEED TO BE SUPPORTED **
  974. -- **************************************************************************
  975. -- Each of these OID's is a list corresponding to each interface.
  976. -- **************************************************************************
  977.     
  978. --    kbWirelessLocalInterfaceType OBJECT IDENTIFIER
  979. --    OBJECT-TYPE
  980. --        SYNTAX SEQUENCE OF INTEGER 
  981. --            {   
  982. --                compatibility_Mode(1),
  983. --                tc_Peer_to_Peer(2),
  984. --                tc_Base_Station(3),
  985. --                tc_Satellite_Station(4),
  986. --                tc_Polling_Base_Station(5)
  987. --            }
  988. --        MAX-ACCESS read-write
  989. --        STATUS current
  990. --        DESCRIPTION
  991. --                "How the KarlBridge's network interfaces are configured. Possible values are:
  992. --                compatibility_Mode(1)         IEEE 802.11 mode or legacy Wireless(-I) mode
  993. --                tc_Peer_to_Peer(2)             TurboCell Peer-to-Peer Station (no base stations, no polling)
  994. --                tc_Base_Station(3)             TurboCell Base Station
  995. --                tc_Satellite_Station(4)         TurboCell Satellite Station
  996. --                tc_Polling_Base_Station(5)     TurboCell Polling Base Station"
  997. --        ::= { kbWireless 3 }
  998. --            
  999. --    kbWirelessTestExploreTime OBJECT IDENTIFIER
  1000. --    OBJECT-TYPE
  1001. --        SYNTAX INTEGER
  1002. --        MAX-ACCESS read-write
  1003. --        STATUS current
  1004. --        DESCRIPTION
  1005. --            "Time in seconds for the explore phase of the radio link test.
  1006. --            (The explore phase finds suitable partners with which to perform 
  1007. --            a radio link test.) It is set to non-zero value to start the test. 
  1008. --            The KarlBridge resets the number after starting the explore phase."
  1009. --        ::= { kbWireless 4 }
  1010. --
  1011. --    kbWirelessTestExploreRate OBJECT IDENTIFIER
  1012. --    OBJECT-TYPE
  1013. --        SYNTAX INTEGER
  1014. --        MAX-ACCESS read-write
  1015. --        STATUS current
  1016. --        DESCRIPTION
  1017. --            "The interval in hundredths of seconds between radio link test 
  1018. --            explore packets."
  1019. --        ::= { kbWireless 5 }
  1020. --                                  
  1021.  
  1022.  
  1023. --- **************************************************************************
  1024. --  ** END UNSUPPORTED OID'S
  1025. --- **************************************************************************
  1026.     -------------------------------------------------------------------
  1027.     --- KarlBridge SEC MIB module
  1028.     ---    The Super Ethernet Converter (SEC) tunnels Ethernet traffic 
  1029.     ---    from multiple client stations to another station by wrapping
  1030.     ---    each Ethernet packet with a source of the SEC Station and
  1031.     ---    destination address of the tunnel partner.
  1032.     ---
  1033.     kbSEC OBJECT IDENTIFIER ::= { kbridge-mib 8 }
  1034.  
  1035.         kbSECClientTable OBJECT-TYPE
  1036.             SYNTAX  SEQUENCE OF KBSECClientEntry
  1037.             ACCESS  not-accessible
  1038.             STATUS  current
  1039.             DESCRIPTION
  1040.                     "A table that contains information about Super 
  1041.                     Ethernet Converter (SEC) clients and the SEC station 
  1042.                     through which they are connected."
  1043.             ::= { kbSEC 1 }
  1044.  
  1045.           kbSECClientEntry OBJECT-TYPE
  1046.               SYNTAX  KBSECClientEntry
  1047.               ACCESS  not-accessible
  1048.               STATUS  current
  1049.               DESCRIPTION
  1050.                       "An entry in the kbSECClientTable. Each entry contains
  1051.                       the client's MAC address (which is the table index) and
  1052.                       the MAC address of the SEC through which the client is
  1053.                       connected."
  1054.               INDEX   { kbSECClientAddress }
  1055.               ::= { kbSECClientTable 1 }
  1056.  
  1057.           KBSECClientEntry ::=
  1058.               SEQUENCE {
  1059.                   kbSECClientAddress
  1060.                       MacAddress,
  1061.                   kbSECStationAddress
  1062.                       MacAddress
  1063.               }
  1064.  
  1065.           kbSECClientAddress OBJECT-TYPE
  1066.               SYNTAX  MacAddress
  1067.               ACCESS  read-only
  1068.               STATUS  current
  1069.               DESCRIPTION
  1070.                       "The unicast MAC address of the client station that is
  1071.                       connecting through the SEC unit denoted by 
  1072.                       kbSECStationAddress."
  1073.               ::= { kbSECClientEntry 1 }
  1074.  
  1075.           kbSECStationAddress OBJECT-TYPE
  1076.               SYNTAX  MacAddress
  1077.               ACCESS  read-only
  1078.               STATUS  current
  1079.               DESCRIPTION
  1080.                       "The unicast MAC address of the SEC station through which 
  1081.                       the client is connected."
  1082.               ::= { kbSECClientEntry 2 }
  1083.  
  1084.     -------------------------------------------------------------------
  1085.     --- KarlBridge Client Info MIB module              
  1086.     ---
  1087.     ---
  1088.     kbClientInfo OBJECT IDENTIFIER ::= { kbridge-mib 9 }
  1089.                                     
  1090.         --------------------
  1091.         --- The kbClientInfoByNumberTable, which is the same information as the 
  1092.         ---   kbClientInfoByMacTable below, but is indexed by virtual port number. 
  1093.         ---                      
  1094.           ---       .kbCIbyNumberVirtualPortNumber(1) [ 4 bytes]    
  1095.           ---       .kbCIbyNumberMACAddress(2)        [ 6 bytes]    
  1096.           ---       .kbCIByNumberInterfaceNum(3)      [ 4 bytes]
  1097.           ---       .kbCIbyNumberStationName(4)       [32 bytes]
  1098.           ---       .kbCIbyNumberTotalBytes(5)        [ 4 bytes]
  1099.           ---       .kbCIbyNumberTotalPackets(6)      [ 4 bytes]
  1100.           ---       .kbCIbyNumberSNRAverage(7)        [ 4 bytes]
  1101.           ---       .kbCIbyNumberTimeLastRecv(8)      [ 4 bytes]
  1102.         kbClientInfoByNumberTable OBJECT-TYPE
  1103.             SYNTAX  SEQUENCE OF KBClientInfoByNumberEntry
  1104.             ACCESS  not-accessible
  1105.             STATUS  current
  1106.             DESCRIPTION
  1107.                     "A table that contains information about (wireless) clients 
  1108.                     that pass traffic through this KarlBridge, indexed by a 
  1109.                     virtual port number that is unique only within this table."
  1110.             ::= { kbClientInfo 1 }
  1111.  
  1112.           kbClientInfoByNumberEntry OBJECT-TYPE
  1113.               SYNTAX  KBClientInfoByNumberEntry
  1114.               ACCESS  not-accessible
  1115.               STATUS  current
  1116.               DESCRIPTION
  1117.                       "An entry in the kbClientInfoByNumberTable. Each entry contains 
  1118.                       information for a particular client station indexed by the 
  1119.                       client's virtual port number."
  1120.               INDEX   { kbCIbyNumberVirtualPort }
  1121.               ::= { kbClientInfoByNumberTable 1 }
  1122.  
  1123.           KBClientInfoByNumberEntry ::=
  1124.               SEQUENCE {
  1125.                   kbCIbyNumberVirtualPort
  1126.                         Unsigned32,
  1127.                   kbCIbyNumberMACAddress
  1128.                       MacAddress,
  1129.                   kbCIByNumberInterfaceNum
  1130.                       Unsigned32,
  1131.                   kbCIbyNumberStationName
  1132.                         OCTET STRING,
  1133.                   kbCIbyNumberTotalBytes
  1134.                       Counter32,
  1135.                   kbCIbyNumberTotalPackets
  1136.                       Counter32,
  1137.                   kbCIbyNumberSNRAverage
  1138.                       Gauge32,
  1139.                   kbCIbyNumberTimeLastRecv
  1140.                       Counter32    
  1141.               }
  1142.  
  1143.           kbCIbyNumberVirtualPort OBJECT-TYPE
  1144.               SYNTAX  Unsigned32 (0..4294967295)
  1145.               ACCESS  read-only
  1146.               STATUS  current
  1147.               DESCRIPTION
  1148.                       "The virtual port number to which the client is connected.
  1149.                        Used as the index for this table."
  1150.               ::= { kbClientInfoByNumberEntry 1 }
  1151.  
  1152.           kbCIbyNumberMACAddress OBJECT-TYPE
  1153.               SYNTAX  MacAddress
  1154.               ACCESS  read-only
  1155.               STATUS  current
  1156.               DESCRIPTION
  1157.                       "The client's unique unicast MAC Address. 
  1158.                        This value can be used as the index in the kbClientInfoByMacTable."
  1159.               ::= { kbClientInfoByNumberEntry 2 }
  1160.  
  1161.           kbCIByNumberInterfaceNum OBJECT-TYPE
  1162.               SYNTAX  Unsigned32 (0..4294967295)
  1163.               ACCESS  read-only
  1164.               STATUS  current
  1165.               DESCRIPTION
  1166.                       "The KarlBridge interface to which the client is connected."
  1167.               ::= { kbClientInfoByNumberEntry 3 }
  1168.  
  1169.           kbCIbyNumberStationName OBJECT-TYPE
  1170.               SYNTAX  OCTET STRING
  1171.               ACCESS  read-only
  1172.               STATUS  current
  1173.               DESCRIPTION
  1174.                       "The client's ASCII Station Name."
  1175.               ::= { kbClientInfoByNumberEntry 4 } 
  1176.               
  1177.           kbCIbyNumberTotalBytes OBJECT-TYPE
  1178.               SYNTAX  Counter32
  1179.               ACCESS  read-only
  1180.               STATUS  current
  1181.               DESCRIPTION
  1182.                       "The total number of bytes that have been passed through the
  1183.                       KarlBridge for this client 
  1184.                       (clientTotalBytes = clientSentBytes + clientRecvBytes)"
  1185.               ::= { kbClientInfoByNumberEntry 5 }
  1186.           
  1187.           kbCIbyNumberTotalPackets OBJECT-TYPE
  1188.               SYNTAX  Counter32
  1189.               ACCESS  read-only
  1190.               STATUS  current
  1191.               DESCRIPTION
  1192.                       "The total number of packets that have been passed through the
  1193.                       KarlBridge for this client 
  1194.                       (clientTotalPackets = clientSentPackets + clientRecvPackets)"
  1195.               ::= { kbClientInfoByNumberEntry 6 }
  1196.               
  1197.           kbCIbyNumberSNRAverage OBJECT-TYPE
  1198.               SYNTAX  Gauge32
  1199.               ACCESS  read-only
  1200.               STATUS  current
  1201.               DESCRIPTION
  1202.                       "The running average of the Signal-to-Noise Ratio (SNR)
  1203.                       for this client, if the client is connected directly to
  1204.                       the KarlBridge on a wireless interface. 0 otherwise."
  1205.               ::= { kbClientInfoByNumberEntry 7 }
  1206.               
  1207.           kbCIbyNumberTimeLastRecv OBJECT-TYPE
  1208.               SYNTAX  Counter32
  1209.               ACCESS  read-only
  1210.               STATUS  current
  1211.               DESCRIPTION
  1212.                       "The number of time ticks (in 1/100ths of a second) since a
  1213.                       packet was last received from this client."
  1214.               ::= { kbClientInfoByNumberEntry 8 }
  1215.         
  1216.           --------------------
  1217.           --- The kbClientInfoByMacTable, which is the same information as the 
  1218.           ---   kbClientInfoByNumberTable above, but is indexed by MAC Address. 
  1219.           ---                      
  1220.           ---       .kbCIbyMacMACAddress(1)        [ 6 bytes]    
  1221.           ---       .kbCIbyMacVirtualPort(2)       [ 4 bytes]    
  1222.           ---       .kbCIByMacInterfaceNum(3)      [ 4 bytes]
  1223.           ---       .kbCIbyMacStationName(4)       [32 bytes]
  1224.           ---       .kbCIbyMacTotalBytes(5)        [ 4 bytes]
  1225.           ---       .kbCIbyMacTotalPackets(6)      [ 4 bytes]
  1226.           ---       .kbCIbyMacSNRAverage(7)        [ 4 bytes]
  1227.           ---       .kbCIbyMacTimeLastRecv(8)      [ 4 bytes]
  1228.         kbClientInfoByMacTable OBJECT-TYPE
  1229.             SYNTAX  SEQUENCE OF KBClientInfoByMacEntry
  1230.             ACCESS  not-accessible
  1231.             STATUS  current
  1232.             DESCRIPTION
  1233.                     "A table that contains information about (wireless) clients 
  1234.                     that pass traffic through this KarlBridge, indexed by client MAC Address."
  1235.             ::= { kbClientInfo 2 }
  1236.  
  1237.           kbClientInfoByMacEntry OBJECT-TYPE
  1238.               SYNTAX  KBClientInfoByMacEntry
  1239.               ACCESS  not-accessible
  1240.               STATUS  current
  1241.               DESCRIPTION
  1242.                       "An entry in the kbClientInfoByMacTable. Each entry contains 
  1243.                       information for a particular client station indexed by the 
  1244.                       client's unique MAC Address."
  1245.               INDEX   { kbCIbyMacMACAddress }
  1246.               ::= { kbClientInfoByMacTable 1 }
  1247.  
  1248.           KBClientInfoByMacEntry ::=
  1249.               SEQUENCE {
  1250.                   kbCIbyMacMACAddress
  1251.                       MacAddress,
  1252.                   kbCIbyMacVirtualPort
  1253.                         Unsigned32,
  1254.                   kbCIbyMacInterfaceNum
  1255.                       Unsigned32,
  1256.                   kbCIbyMacStationName
  1257.                         OCTET STRING,
  1258.                   kbCIbyMacTotalBytes
  1259.                       Counter32,
  1260.                   kbCIbyMacTotalPackets
  1261.                       Counter32,
  1262.                   kbCIbyMacSNRAverage
  1263.                       Gauge32,
  1264.                   kbCIbyMacTimeLastRecv
  1265.                       Counter32    
  1266.               }
  1267.  
  1268.           kbCIbyMacMACAddress OBJECT-TYPE
  1269.               SYNTAX  MacAddress
  1270.               ACCESS  read-only
  1271.               STATUS  current
  1272.               DESCRIPTION
  1273.                       "The client's unique unicast MAC Address. 
  1274.                        Used as the index for this table."
  1275.               ::= { kbClientInfoByMacEntry 1 }
  1276.  
  1277.           kbCIbyMacVirtualPort OBJECT-TYPE
  1278.               SYNTAX  Unsigned32 (0..4294967295)
  1279.               ACCESS  read-only
  1280.               STATUS  current
  1281.               DESCRIPTION
  1282.                       "The virtual port number to which the client is connected.
  1283.                        This value can be used as the index in the kbClientInfoByNumberTable."
  1284.               ::= { kbClientInfoByMacEntry 2 }
  1285.  
  1286.           kbCIbyMacInterfaceNum OBJECT-TYPE
  1287.               SYNTAX  Unsigned32 (0..4294967295)
  1288.               ACCESS  read-only
  1289.               STATUS  current
  1290.               DESCRIPTION
  1291.                       "The KarlBridge interface to which the client is connected."
  1292.               ::= { kbClientInfoByMacEntry 3 }
  1293.  
  1294.           kbCIbyMacStationName OBJECT-TYPE
  1295.               SYNTAX  OCTET STRING
  1296.               ACCESS  read-only
  1297.               STATUS  current
  1298.               DESCRIPTION
  1299.                       "The client's ASCII Station Name."
  1300.               ::= { kbClientInfoByMacEntry 4 } 
  1301.               
  1302.           kbCIbyMacTotalBytes OBJECT-TYPE
  1303.               SYNTAX  Counter32
  1304.               ACCESS  read-only
  1305.               STATUS  current
  1306.               DESCRIPTION
  1307.                       "The total number of bytes that have been passed through the
  1308.                       KarlBridge for this client 
  1309.                       (clientTotalBytes = clientSentBytes + clientRecvBytes)"
  1310.               ::= { kbClientInfoByMacEntry 5 }
  1311.           
  1312.           kbCIbyMacTotalPackets OBJECT-TYPE
  1313.               SYNTAX  Counter32
  1314.               ACCESS  read-only
  1315.               STATUS  current
  1316.               DESCRIPTION
  1317.                       "The total number of packets that have been passed through the
  1318.                       KarlBridge for this client 
  1319.                       (clientTotalPackets = clientSentPackets + clientRecvPackets)"
  1320.               ::= { kbClientInfoByMacEntry 6 }
  1321.               
  1322.           kbCIbyMacSNRAverage OBJECT-TYPE
  1323.               SYNTAX  Gauge32
  1324.               ACCESS  read-only
  1325.               STATUS  current
  1326.               DESCRIPTION
  1327.                       "The running average of the Signal-to-Noise Ratio (SNR)
  1328.                       for this client, if the client is connected directly to
  1329.                       the KarlBridge on a wireless interface. 0 otherwise."
  1330.               ::= { kbClientInfoByMacEntry 7 }
  1331.               
  1332.           kbCIbyMacTimeLastRecv OBJECT-TYPE
  1333.               SYNTAX  Counter32
  1334.               ACCESS  read-only
  1335.               STATUS  current
  1336.               DESCRIPTION
  1337.                       "The number of time ticks (in 1/100ths of a second) since a
  1338.                       packet was last received from this client."
  1339.               ::= { kbClientInfoByMacEntry 8 }              
  1340.   ---
  1341.     --- END of KarlBridge Client Info MIB module
  1342.     -------------------------------------------------------------------
  1343.  
  1344. END            
  1345.